home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr46 / vfwdk.zip / VFWSDK.ZIP / SAMPLES / BRAVADO / DEBUG.H < prev    next >
Text File  |  1993-01-31  |  1KB  |  31 lines

  1. /****************************************************************************
  2.  *
  3.  *   debug.h
  4.  * 
  5.  *   Debug defines
  6.  *
  7.  *   Microsoft Video for Windows Sample Capture Driver
  8.  *   Chips & Technologies 9001 based frame grabbers.
  9.  *
  10.  *   Copyright (c) 1992-1993 Microsoft Corporation.  All Rights Reserved.
  11.  *
  12.  *    You have a royalty-free right to use, modify, reproduce and 
  13.  *    distribute the Sample Files (and/or any modified version) in 
  14.  *    any way you find useful, provided that you agree that 
  15.  *    Microsoft has no warranty obligations or liability for any 
  16.  *    Sample Application Files which are modified. 
  17.  *
  18.  ***************************************************************************/
  19.  
  20. #ifdef DEBUG
  21.    #define D1(sz) if (wDebugLevel >= 1) (OutputDebugString("\r\nPCVideo: "),OutputDebugString(sz))
  22.    #define D2(sz) if (wDebugLevel >= 2) (OutputDebugString(" "),OutputDebugString(sz))
  23.    #define D3(sz) if (wDebugLevel >= 3) (OutputDebugString(" "),OutputDebugString(sz))
  24.    #define D4(sz) if (wDebugLevel >= 4) (OutputDebugString(" "),OutputDebugString(sz))
  25. #else
  26.    #define D1(sz) 0
  27.    #define D2(sz) 0
  28.    #define D3(sz) 0
  29.    #define D4(sz) 0
  30. #endif
  31.